USE F90_UNIX_DIR
This module contains part of a Fortran API to functions detailed in ISO/IEC 9945-1:1990 Portable Operating System Interface (POSIX) - Part 1: System Application Program Interface (API) [C Language].
The functions in this module are from sections 5.2: Working Directory, 5.3.3 Set File Creation Mask, 5.3.4 Link to a File, 5.4 Special File Creation and 5.5 File Removal.
Error handling is described in F90_UNIX_ERRNO. Note that for procedures with an optional ERRNO argument, if an error occurs and ERRNO is not present, the program will be terminated.
INTEGER,PARAMETER :: MODE_KINDThe integer kind used by to represent file permissions (see ISO/IEC 9945-1).
SUBROUTINE CHDIR(PATH,ERRNO) CHARACTER*(*),INTENT(IN) :: PATH INTEGER,OPTIONAL,INTENT(OUT) :: ERRNOSets the current working directory to PATH. Note that any trailing blanks in PATH may be significant. If ERRNO is present it receives the error status.
Possible error conditions include EACCES, ENAMETOOLONG, ENOTDIR and ENOENT (see F90_UNIX_ERRNO).
SUBROUTINE GETCWD(PATH,LENPATH,ERRNO) CHARACTER*(*),OPTIONAL,INTENT(OUT) :: PATH INTEGER,OPTIONAL,INTENT(OUT) :: LENPATH, ERRNOAccesses the current working directory information. If PATH is present, it receives the name of the current working directory, blank-padded or truncated as appropriate if the length of the current working directory name differs from that of PATH. If LENPATH is present, it receives the length of the current working directory name. If ERRNO is present it receives the error status.
If neither PATH nor LENPATH is present, error EINVAL is raised. If the path to current working directory cannot be searched, error EACCES is raised. If PATH is present and LENPATH is not present, and PATH is shorter than the current working directory name, error ERANGE is raised. (See F90_UNIX_ERRNO).
SUBROUTINE LINK(EXISTING,NEW,ERRNO) CHARACTER*(*),INTENT(IN) :: EXISTING,NEW INTEGER,OPTIONAL,INTENT(OUT) :: ERRNOCreates a new link (named NEW) for an existing file (named EXISTING).
Possible errors include EACCES, EEXIST, EMLINK, ENAMETOOLONG, ENOENT, ENOSPC, ENOTDIR, EPERM, EROFS, EXDEV (see F90_UNIX_ERRNO).
SUBROUTINE MKDIR(PATH,MODE,ERRNO) CHARACTER*(*),INTENT(IN) :: PATH INTEGER(MODE_KIND),INTENT(IN) :: MODE INTEGER,OPTIONAL,INTENT(OUT) :: ERRNOCreates a new directory with name PATH and mode MODE. Note that any trailing blanks in PATH may be significant.
Possible errors include EACCES, EEXIST, EMLINK, ENAMETOOLONG, ENOENT, ENOSPC, ENOTDIR, EROFS (see F90_UNIX_ERRNO).
SUBROUTINE MKFIFO(PATH,MODE,ERRNO) CHARACTER*(*),INTENT(IN) :: PATH INTEGER(MODE_KIND),INTENT(IN) :: MODE INTEGER,OPTIONAL,INTENT(OUT) :: ERRNOCreates a new FIFO special file with name PATH and mode MODE. Note that any trailing blanks in PATH may be significant.
Possible errors include EACCES, EEXIST, ENAMETOOLONG, ENOENT, ENOSPC, ENOTDIR, EROFS (see F90_UNIX_ERRNO).
SUBROUTINE RENAME(OLD,NEW,ERRNO) CHARACTER*(*),INTENT(IN) :: OLD CHARACTER*(*),INTENT(IN) :: NEW INTEGER,OPTIONAL,INTENT(OUT) :: ERRNOChanges the name of the file OLD to NEW. Any existing file NEW is first removed. Note that any trailing blanks in OLD or NEW may be significant.
Possible errors include EACCES, EBUSY, EEXIST, ENOTEMPTY, EINVAL, EISDIR, ENAMETOOLONG, EMLINK, ENOENT, ENOSPC, ENOTDIR, EROFS, EXDEV (see F90_UNIX_ERRNO).
SUBROUTINE RMDIR(PATH,ERRNO) CHARACTER*(*),INTENT(IN) :: PATH INTEGER,OPTIONAL,INTENT(OUT) :: ERRNORemoves the directory PATH. Note that any trailing blanks in PATH may be significant.
Possible errors include EACCES, EBUSY, EEXIST, ENOTEMPTY, ENAMETOOLONG, ENOENT, ENOTDIR, EROFS (see F90_UNIX_ERRNO).
SUBROUTINE UMASK(CMASK,PMASK) INTEGER(MODE_KIND),INTENT(IN) :: CMASK INTEGER(MODE_KIND),OPTIONAL,INTENT(OUT) :: PMASKSets the file mode creation mask of the calling process to CMASK. If PMASK is present it receives the previous value of the mask.
SUBROUTINE UNLINK(PATH,ERRNO) CHARACTER*(*),INTENT(IN) :: PATH INTEGER,OPTIONAL,INTENT(OUT) :: ERRNODeletes the file PATH. Note that any trailing blanks in PATH may be significant.
Possible errors include EACCES, EBUSY, ENAMETOOLONG, ENOENT, ENOTDIR, EPERM, EROFS (see F90_UNIX_ERRNO).
f90_unix_errno(3), f95(1), intro(3), nag_modules(3).
Please report any bugs found to "support@nag.co.uk" or "infodesk@nag.com", along with any suggestions for improvements.